home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v05n02 / buffer.doc < prev    next >
Text File  |  1992-01-14  |  560b  |  23 lines

  1. PC/Computing                February 1991
  2.  
  3. BUFFER.COM
  4.  
  5. The syntax for BUFFER is:
  6.  
  7.     BUFFER string
  8.  
  9. where string is anay string of characters (15 characters
  10. or fewer, due to the size limits of the DOS keyboard
  11. buffer). Use a question mark to simulate the Enter key.
  12.  
  13. To load 1-2-3 with a file called TEST, you could create
  14. a batch file as follows:
  15.  
  16.     BUFFER /FRTEST?
  17.     123
  18.  
  19. The first line places into the keyboard buffer the commands
  20. to retrieve a file called test, and the final question mark
  21. simulates pressing the Enter key to complete the command.
  22.  
  23.